home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / db / Db_Put.c < prev    next >
C/C++ Source or Header  |  1989-01-13  |  2KB  |  88 lines

  1. /* 
  2.  * Db_Put.c --
  3.  *
  4.  *    Source code for the Db_Put procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/db/RCS/Db_Put.c,v 1.5 89/01/13 11:44:28 douglis Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20.  
  21. #include <db.h>
  22. #include "dbInt.h"
  23.  
  24.  
  25. /*
  26.  *----------------------------------------------------------------------
  27.  *
  28.  * Db_Put --
  29.  *
  30.  *    Write a random entry, or the next entry in order, given the handle
  31.  *    for a database.
  32.  *
  33.  * Results:
  34.  *    -1 indicates an error, in which case errno indicates more details.
  35.  *    0 indicates success.
  36.  *
  37.  * Side effects:
  38.  *    The position in the file is updated, and data are written to the file.
  39.  *
  40.  *----------------------------------------------------------------------
  41.  */
  42.  
  43. int
  44. Db_Put(handlePtr, bufPtr, index)
  45.     Db_Handle *handlePtr;
  46.     char *bufPtr;
  47.     int index;                /* -1 to indicate next in order */
  48. {
  49.     register int streamID;
  50.     int bufSize;
  51.     int offset;
  52.     int bytesWritten;
  53.     int status;
  54.  
  55.     streamID = handlePtr->streamID;
  56.     bufSize = handlePtr->structSize;
  57.     if (handlePtr->lockWhen == DB_LOCK_ACCESS) {
  58.     status = DbLockDesc(handlePtr);
  59.     if (status == -1) {
  60.         return(status);
  61.     }
  62.     }
  63.     if (index == -1) {
  64.     index = handlePtr->index;
  65.     } else {
  66.     offset = index * bufSize;
  67.     status = lseek(streamID, (long) offset, L_SET);
  68.     if (status == -1) {
  69.         return(status);
  70.     }
  71.     }
  72.     bytesWritten = write(streamID, bufPtr, bufSize);
  73.     if (bytesWritten == -1) {
  74.     status = -1;
  75.     } else if (bytesWritten != bufSize) {
  76.     status = -1;
  77.     errno = 0;
  78.     } else {
  79.     status = 0;
  80.     }
  81.     handlePtr->index = index + 1;
  82.     if (handlePtr->lockWhen == DB_LOCK_ACCESS ||
  83.     handlePtr->lockWhen == DB_LOCK_READ_MOD_WRITE) {
  84.     (void) flock(streamID, LOCK_EX | LOCK_UN);
  85.     }
  86.     return(status);
  87. }
  88.